home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / dev / gg / ncurses-5.3.lha / ncurses-5.3 / misc / Makefile.in < prev    next >
Makefile  |  2002-10-24  |  4KB  |  129 lines

  1. # $Id: Makefile.in,v 1.34 2002/01/12 23:54:39 Robert.Joop Exp $
  2. ##############################################################################
  3. # Copyright (c) 1998,2000,2001,2002 Free Software Foundation, Inc.           #
  4. #                                                                            #
  5. # Permission is hereby granted, free of charge, to any person obtaining a    #
  6. # copy of this software and associated documentation files (the "Software"), #
  7. # to deal in the Software without restriction, including without limitation  #
  8. # the rights to use, copy, modify, merge, publish, distribute, distribute    #
  9. # with modifications, sublicense, and/or sell copies of the Software, and to #
  10. # permit persons to whom the Software is furnished to do so, subject to the  #
  11. # following conditions:                                                      #
  12. #                                                                            #
  13. # The above copyright notice and this permission notice shall be included in #
  14. # all copies or substantial portions of the Software.                        #
  15. #                                                                            #
  16. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
  17. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   #
  18. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    #
  19. # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      #
  20. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    #
  21. # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        #
  22. # DEALINGS IN THE SOFTWARE.                                                  #
  23. #                                                                            #
  24. # Except as contained in this notice, the name(s) of the above copyright     #
  25. # holders shall not be used in advertising or otherwise to promote the sale, #
  26. # use or other dealings in this Software without prior written               #
  27. # authorization.                                                             #
  28. ##############################################################################
  29. #
  30. # Author: Thomas E. Dickey <dickey@clark.net> 1996,1997
  31. #
  32. # Makefile for ncurses miscellany directory
  33. #
  34. # This makes/installs the terminfo database
  35. #
  36. # The variable 'srcdir' refers to the source-distribution, and can be set with
  37. # the configure script by "--srcdir=DIR".
  38. #
  39. # The rules are organized to produce the libraries for the configured models,
  40. # and the programs with the configured default model.
  41.  
  42. # turn off _all_ suffix rules; we'll generate our own
  43. .SUFFIXES :
  44.  
  45. SHELL        = /bin/sh
  46. THIS        = Makefile
  47.  
  48. CF_MFLAGS     = @cf_cv_makeflags@
  49. @SET_MAKE@
  50.  
  51. DESTDIR        = @DESTDIR@
  52. top_srcdir    = @top_srcdir@
  53. srcdir        = @srcdir@
  54. prefix        = @prefix@
  55. exec_prefix    = @exec_prefix@
  56. bindir        = @bindir@
  57. libdir        = @libdir@
  58. datadir        = @datadir@
  59.  
  60. CC        = @CC@
  61. HOSTCC        = @BUILD_CC@
  62.  
  63. tabsetdir    = $(datadir)/tabset
  64. ticdir        = @TERMINFO@
  65. source        = @TERMINFO_SRC@
  66.  
  67. INSTALL        = @INSTALL@
  68. INSTALL_DATA    = @INSTALL_DATA@
  69.  
  70. ################################################################################
  71. all :
  72.  
  73. depend :
  74.  
  75. sources :
  76.  
  77. install : install.data
  78.  
  79. install.data :    $(DESTDIR)$(libdir) \
  80.         $(DESTDIR)$(ticdir) \
  81.         $(DESTDIR)$(tabsetdir)
  82.     DESTDIR=${DESTDIR} \
  83.     prefix=${prefix} \
  84.     exec_prefix=${exec_prefix} \
  85.     bindir=${bindir} \
  86.     top_srcdir=${top_srcdir} \
  87.     srcdir=${srcdir} \
  88.     datadir=${datadir} \
  89.     ticdir=${ticdir} \
  90.     source=${source} \
  91.     THIS_CC="$(CC)" \
  92.     THAT_CC="$(HOSTCC)" \
  93.     sh ./run_tic.sh
  94.     @cd $(srcdir)/tabset && \
  95.         sh -c 'for i in * ; do \
  96.             if test -f $$i ; then \
  97.             echo installing $$i; \
  98.             $(INSTALL_DATA) $$i $(DESTDIR)$(tabsetdir)/$$i; \
  99.             fi; done'
  100.  
  101. $(DESTDIR)$(libdir) \
  102. $(DESTDIR)$(tabsetdir) \
  103. $(DESTDIR)$(ticdir) :
  104.     sh $(srcdir)/../mkinstalldirs $@
  105.  
  106. uninstall : uninstall.data
  107.  
  108. uninstall.data :
  109.     -cd $(DESTDIR)$(ticdir) && rm -rf *
  110.     -cd $(DESTDIR)$(tabsetdir) && rm -rf *
  111.  
  112. tags :
  113.  
  114. @MAKE_UPPER_TAGS@TAGS :
  115.  
  116. mostlyclean :
  117.     -rm -f core tags TAGS *~ *.bak *.ln *.atac trace
  118.  
  119. clean :: mostlyclean
  120.  
  121. distclean : clean
  122.     -rm -f Makefile run_tic.sh
  123.  
  124. realclean : distclean
  125.  
  126. ###############################################################################
  127. # The remainder of this file is automatically generated during configuration
  128. ###############################################################################
  129.